home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / rdblib / readme.txt < prev    next >
Text File  |  1994-04-21  |  4KB  |  86 lines

  1. Readme File for:
  2. RDBLIB - Common Subroutines and Functions Library For Visual Basic
  3.  
  4. RDBLIB 1.2 - Common Error Handler and subroutines - provides common error
  5. handler routine with help and printable problem reports.  Common
  6. subroutines for string centering, right justifying string (for columns),
  7. formatting  long strings for printing, validating date and more.  Also
  8. shows how to  provide field highlighting, status bar help and popup help
  9. using just VB code and controls.  Freeware.
  10.  
  11. RDBLIB.BAS contains the following subroutines:
  12.    RB_Center - Prints a string centered on a specified line
  13.    ShellAndWait - starts (via SHELL() function) a program and waits
  14.       until it completes.
  15.       
  16. RDBLIB.BAS contains the following functions:
  17.    RB_ErrorHandler - a common error handler that includes help on erorrs
  18.       and a form for producing a problem report.
  19.    RB_Rjustify - prints a numeric value right justified on specified 
  20.       location with specified format.
  21.    RB_Text_Format - Formats a string for printing with a specified printer
  22.       line length.
  23.    RB_Validate_Date - validates date input.
  24.    
  25. RDBDEMO.MAK will produce a program that demos these functions and demo
  26.     a field highlighting and popup help functions.
  27.  
  28. RDBFRMCD.BAS contains sample form level code for highlighting fields
  29.     and providing popup help for controls, e.g. buttons  It contains:
  30.    ShowHelp - routine to show popup help for control, e.g. buttons
  31.    FldGotFocus - routine to highlight field and show status bar help msg
  32.    FldLostFocus - routine to remove above highlighting and help
  33.  
  34. To install, copy all files into a directory of your choice.
  35.  
  36. To use in your VB projects include the following files in your project:
  37.    RDBLIB.BAS   - common library module
  38.    RBERRFRM.FRM - Error display form
  39.    RBPROBRP.FRM - Problem reporting form
  40.    RBSCRN.FRM   - Screen for capturing and printing current screen
  41.    RBERROR.HLP  - Help on errors - must be in windows directory or the
  42.           current (program) directory
  43.    
  44. The following VB files are also required:
  45.    CMDIALOG.VBX - MS VB common dialogs
  46.    THREED.VBX   - MS VB 3D controls
  47.    
  48. Information on using the subroutines and functions can be obtained from
  49. the source for each routine in RDBLIB.BAS and from the demo form.
  50.  
  51. These routines are being provided for use in your programs.  You may
  52. distribute these routines or their compiled versions as a part of
  53. your systems.  However, you may not distribute these routines by themselves
  54. for profit.
  55.  
  56. Payment for these routines is not required, but will always be appreciated.
  57. Send questions or donations to:
  58.    Royce D. Bacon
  59.    RDB Systems
  60.    8942 W. Lawrence Ave.
  61.    Milwaukee, WI  53225
  62.    Compuserve ID: 70042,1001
  63.  
  64. Files included:
  65.    GLOBAL.BAS   - Global definitions used by demo program
  66.    RDBLIB.BAS   - Common library module
  67.    RDBFRMCD.BAS - Common form code subroutines
  68.    LOGO.FRM     - About form for demo program
  69.    RBERRFRM.FRM - Error display form
  70.    RBPROBRP.FRM - Problem reporting form
  71.    TEST.FRM     - Main form for demo program
  72.    RBERROR.HHH  - Context sensitive defines produced by Quick & Dirty Help
  73.    RBERROR.HLP  - Help file for error handler
  74.    RBERROR.HPJ  - Help compiler project file for error help file
  75.    RDBDEMO.MAK  - VB Project file for demo program
  76.    RBERROR.QDH  - Quick & Dirty Help source file for error help file
  77.    RBERROR.RTF  - Rich Text File for error help file (produced by Quick &
  78.                   Dirty Help)
  79.    README.TXT   - This file
  80.    BROGHTBY.WAV - Sound clip used in about in demo program
  81.    DRUM.WAV     - Sound clip used in about in demo program
  82.    RDBLIB.WAV   - Sound clip used in about in demo program
  83.    RDBSYSTM.WAV - Sound clip used in about in demo program
  84.    TADA.WAV     - Sound clip used in about in demo program
  85.  
  86. ***************** End Of README.TXT File **********************************